All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.SpellServerDelegate

public interface SpellServerDelegate
This interface wraps the Objective-C category defining delegate methods of the NSSpellServer class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o spellServerDidForgetWord(SpellServer, String, String)
A wrapper for the - spellServer:didForgetWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).
 o spellServerDidLearnWord(SpellServer, String, String)
A wrapper for the - spellServer:didLearnWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).
 o spellServerSuggestGuessesForWord(SpellServer, String, String)
A wrapper for the - spellServer:suggestGuessesForWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).

Methods

 o spellServerSuggestGuessesForWord
 public abstract Array spellServerSuggestGuessesForWord(SpellServer sender,
                                                        String word,
                                                        String language)
A wrapper for the - spellServer:suggestGuessesForWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).

 o spellServerDidLearnWord
 public abstract void spellServerDidLearnWord(SpellServer sender,
                                              String word,
                                              String language)
A wrapper for the - spellServer:didLearnWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).

 o spellServerDidForgetWord
 public abstract void spellServerDidForgetWord(SpellServer sender,
                                               String word,
                                               String language)
A wrapper for the - spellServer:didForgetWord:inLanguage: Objective-C instance method implemented by delegates of the SpellServer class (known as the NSSpellServer Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index